From: Richard M. Stallman Date: Sun, 1 Sep 1996 19:03:37 +0000 (+0000) Subject: (bookmark-default-file): Use convert-standard-filename. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~83035 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=88fb0aaae4782f57f48c55c0c50f5eb04e80ef6e;p=emacs.git (bookmark-default-file): Use convert-standard-filename. --- diff --git a/lisp/bookmark.el b/lisp/bookmark.el index 4340048e7b6..36bb94464bb 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el @@ -135,9 +135,7 @@ bookmark-default-file, which is `~/.emacs.bmk' by default.") (if bookmark-file ;; In case user set `bookmark-file' in her .emacs: bookmark-file - (if (eq system-type 'ms-dos) - "~/emacs.bmk" ; Cannot have initial dot [Yuck!] - "~/.emacs.bmk")) + (convert-standard-filename "~/.emacs.bmk")) "*File in which to save bookmarks by default.")